home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / gus / digestv2.zip / V2N67.TXT < prev    next >
Text File  |  1993-03-13  |  35KB  |  919 lines

  1.  
  2.  
  3.  
  4.  
  5. Ultrasound Daily Digest     Fri, 12 Mar 93       Volume 2 : Issue  67 
  6.  
  7. Today's Topics:
  8.                    [GUS] Making the MIDI interface
  9.                       [GUS] NAMES OF FUTURESES1
  10.                       [GUS] NAMES OF FUTURESES2
  11.                     F15 III:  No digitized voice!
  12.                             FACTS OF LIVE
  13.                                GUS FAQ
  14.                         GUS prices in Montreal
  15.                            Just Got My GUS
  16.                        MIDI file format request
  17.                           Need Issue 64 & 65
  18.                               NEW FILES
  19.                        pathces? midi connector
  20.                    Problems with installing the GUS
  21.                       PROBLEM WITH -O3 AND 1.4B
  22.                           PTRAN@SCIBORG.....
  23.                                  SBOS
  24.                     Ultrasound Daily Digest V2 #66
  25.                             vol 64 and 65
  26.                           Winjammer - Help!
  27.  
  28.     Information about the UltraSound Daily Digest (such as
  29. mail addresses, request servers, ftp sites, etc., etc.) can be found
  30. at the end of the Digest.
  31.  
  32.     *** HEY!!! *** 
  33.  
  34.     Before you ask a question, *** READ THE FAQ ***.  It's
  35. available on the request server and the ftp sites, or check the
  36. newsgroup archives.
  37.  
  38. ----------------------------------------------------------------------
  39.  
  40. Date: 11 Mar 93 11:48:25 GMT
  41. From: pcunnell@micrognosis.co.uk (Paul Cunnell)
  42. Message-Id: <C3q3Gp.BqJ@micrognosis.co.uk>
  43. Subject: [GUS] Making the MIDI interface
  44. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  45.  
  46. In article <1nliklINN4u7@menudo.uh.edu>, st1qb@Rosie.UH.EDU writes:
  47. |> Has anyone made the midi interface for the GUS that is in the FAQ?
  48. |> If so, were did you find the part# 6N138?  I cant seem to locate
  49. |> this anywhere.  Also, (excuse my ingorance i'm not an EE) but
  50. |> what exactly is that part and its purpose? Thanks...
  51. |>  
  52. |> Dave-
  53. |> st1qb@jetson.uh.edu
  54.  
  55. The 6N138 is a high sensitivity opto-isolator, manufactured by
  56.  
  57.  
  58. Hewlett Packard (and I believe, a company called Quality Technology)
  59. The main point in using this part as opposed to other more common
  60. opto-isolators is the low LED ON current spec. (1.6mA) 
  61.  
  62. A midi out circuit is basically a LED in series with 600 ohms, and a
  63. 5V supply. Taking into account the 1.7V forward drop across the LED,
  64. you get about 5mA in the on state. Other optos generally need more
  65. current to turn them on (say 15-60mA, but this varies a lot). A 
  66. 'high speed' 6N137 opto will also work, I believe, but that would
  67. be a bit marginal on the input current (spec. is min 5mA).
  68.  
  69. Since a number of people have been asking, I'll add below the 
  70. midi circuit that I'm using, plus a bit of general explanation
  71. I've culled from other peoples' postings on the subject.
  72.  
  73.  
  74. Attention Dave DeBry - this should probably replace the current 
  75. entry in the FAQ.  I don't want to take all the credit for other 
  76. peoples' work.
  77.  
  78. Happy midi-ing !
  79.  
  80. Generic Midi Out/In/Through Circuit
  81. ===================================
  82.  
  83. The following shows a typical OUT, cable, and IN circuit
  84.  
  85.       MIDI OUT port ---->|<- cable ->|<---- MIDI IN port              +5V
  86.                                                                  270   |
  87.             +5V        DIN           DIN                     +--\/\/\/-+
  88.              |  220    +-+ +-------+ +-+   220    +--------+ |
  89.         |\   +-\/\/\/--|4|-|-------|-|4|--\/\/\/--|  OPTO  |-+-+- UART RXD
  90.  UART   | \            | | |       | | |          |ISOLATOR|   |
  91.  TXD ---|  \---\/\/\/--|5|-|-------|-|5|----------|        |-+ |
  92.         |  /    220    | | +-------+ | |          +--------+ | |
  93.         | /         +--|2|-+       +-|2|            6N138   GND|
  94.         |/ 7407     |  +-+           +-+                       |
  95.                    GND                                         |
  96.                                                                |
  97.                    +-------------------------------------------+
  98.                    |
  99.                    |      +5V        DIN
  100.                    |       |  220    +-+
  101.                    |  |\   +-\/\/\/--|4|
  102.                    |  | \            | |
  103.                    +--|  \---\/\/\/--|5|   MIDI THRU
  104.                       |  /    220    | |
  105.                       | /         +--|2|
  106.                       |/ 7407     |  +-+
  107.                                  GND
  108.  
  109. Note that when the UART TXD is high, no current flows through the resistors
  110. and optoisolator's LED, causing the optoisolator's phototransistor to remain
  111.  
  112.  
  113. off, allowing the UART RXD to be pulled high by the 270 ohm resistor.  When
  114. the UART TXD is low, current flows through the resistors and optoisolator's
  115. LED, turning on optoisolator's phototransistor, grounding the UART RXD.  The
  116. voltage drop across the optoisolator's LED is typically 1.5 volts, leaving
  117. 3.5 volts to be dropped across (3 times 220) 660 ohms, which allows about
  118. 5 ma to flow.
  119.  
  120. The reason a current loop is used is that it allows an ground isolated
  121. interconnection.  Note that the ground from the MIDI OUT port's device is
  122. not connected to the ground of the MIDI IN port's device.  This prevents
  123. ground loops in systems where appropriate attention has not been paid to
  124. grounding issues, such as the case of typical musicians in a typical club!
  125.  
  126. Acknowledgements:
  127.  Michael R. Kesti (mrk@gvgspd.gvg.tek.com) - general description
  128.  Mr. D Ingles     (davei@comp.lancs.ac.uk) - midi thru bit
  129.  
  130. Gravis Ultrasound Circuit
  131. =========================
  132.  
  133. 15 pin D connector
  134.                                           220R
  135. pin-1 +5v ----+--------------------------/\/\/\---------------\
  136.               |                                                \ 4
  137.               |                                          Gnd--2      MIDI OUT
  138.               |      |\      |\            220R                / 5
  139. pin-12 tr >---|------| o-----| o----------/\/\/\--------------/
  140.               |    13|/ 12 11|/ 10
  141.               |                            220R
  142.               +---------------------------/\/\/\-------------\
  143.               |                                               \ 4
  144. pin-15 rx <---|--------------------+                    Gnd--2      MIDI THRU
  145.               |      |\      |\    |        220R              / 5
  146.               |   +--| o-----| o---+-------/\/\/\------------/
  147.               |   | 1|/ 2   3|/ 4
  148.               |   |
  149.               |   +------+
  150.               |   270R   |                       220R
  151.               +--/\/\/\--+    +------+----------/\/\/\--------\
  152.               |B         |C   |A     |                         \  4
  153.             +-|----------|----|-+    |                                MIDI IN
  154.             |  8        6     2 |  -----                       /  5
  155.             |                   |   / \ IN914 or IN4148     +-/
  156.             |      6N138        |   ---                     |
  157.             |                   |    |                      |
  158.             |           5     3 |    |                      |
  159.             +------------|----|-+    |                      |
  160.                          |    |K     |                      |
  161. pin-5 Gnd  --------------+    +------+----------------------+
  162.  
  163.  
  164. Inverters are 74LS04. (This is a 14-pin IC containing 6 inverters.
  165. Connect pin 14 to +5V, pin 7 to GND)
  166.  
  167.  
  168.  
  169. Leave pin 2 of the MIDI IN unconnected (Don't connect to ground)
  170.  
  171. Acknowledgements:
  172.  Remek Lipinski   (remek@mamura.ee.mu.oz.au) - schematic (updated)
  173.  David Morning    (dam@dcs.glasgow.ac.uk)    - schematic (original)
  174.  Dave Perry       (dp@hydra.carleton.ca)     - research & pin corrections
  175.  
  176. Some hints for testing your circuit
  177. ===================================
  178.  
  179. 1. Check *all* connections (use a continuity tester, and tick them 
  180.    off on a printout of the circuit)
  181.  
  182. 2. Check them again ;-)
  183.  
  184. 3. Make sure you have the latest (GUS0012.zip) windows midi driver,
  185.    and make sure it is installed properly.
  186.  
  187. 4. Make sure your midi sequencer package is set up to use the 
  188.    Ultrasound Midi In/Out ports. (As opposed to the Ultrasound Synth)
  189.  
  190. 5. If you still have no joy:
  191.  
  192.     - just connect the +5V and GND to your midi circuit, 
  193.       (leave the d-connector pins 12 and 15 unconnected), and
  194.       then connect pin 13 of the 7404 to +5V check you have 
  195.       (about) +5V appearing on pin 10. This checks midi out.
  196.     
  197.     - connect pin 4 of the midi-in DIN socket via 2 extra 
  198.       220R resistors to +5V. Check pin 4 of the 7404. It 
  199.       should be low (about 0V). Then connect pin 4 of the 
  200.       midi-in DIN socket to 0V. Pin 4 of the 7404 should 
  201.       go high. This checks midi in. 
  202.     
  203.     - reconnect the d-type pins 12 and 15, and connect a midi
  204.       cable between midi-out on the circuit and and midi-in
  205.       on your synth. Set up your sequencer to use the Ultrasound 
  206.       MIDI port as an output, and ensure that one of the 
  207.       tracks is set to use this port. Check your synth
  208.       is expecting MIDI data on the same channel as sequencer
  209.       is transmitting. Start sequencer playing. Check that
  210.       midi data is being transmitted at pin 12 of the d-type
  211.       (look at it with an oscilloscope, if possible). 
  212.  
  213. Acknowledgements:
  214.  Paul Cunnell (pcunnell@micrognosis.co.uk)
  215.  
  216. Note
  217. ====
  218.  
  219. Standard disclaimers apply - use this information at your own risk,
  220. and if your fry your card/PC/synth/toaster, then you have my
  221.  
  222.  
  223. sympathy, but not much else ;-) 
  224.  
  225. If you're not happy about messing with circuits and soldering irons
  226. and wires and stuff, then you may wish to wait for the midi connector
  227. box from Gravis to become available.
  228.  
  229. -- 
  230. Paul Cunnell (pcunnell@micrognosis.co.uk) 
  231. Micrognosis, 63 Queen Victoria Street, London, EC4N 4UD, UK +44 71 815 5294 
  232.  
  233. ------------------------------
  234.  
  235. Date: Wed, 10 Mar 93 15:44:09 
  236. From: john.smith@gravis.com
  237. Message-Id: <9303101544.A8915wk@gravis.com>
  238. Subject: [GUS] NAMES OF FUTURESES1
  239. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  240.  
  241. Here is a list of those titles that I posted last week.
  242.  
  243.  
  244.  
  245.                Titles Planned for UltraSound Support!
  246.                    Shipping the 1st Qtr. of 1993
  247.                        Updated: Feb 20th, 1993
  248.  
  249. The following list has been complied from information given to us
  250. by the publishers at the time they received our GUS development
  251. kit.  What follows is a partial list of those publishers' plans.
  252.  
  253. Publisher                Working Title            Rel.Date
  254. _____________________________________________________________ 
  255.  
  256. Accolade                 Star Control II          Shipping
  257.      Other titles planned for summer.
  258.  
  259. Activision               Return to Zork           March
  260.      Future titles also planned for 1993
  261.  
  262. Apogee Software          Pickle Wars              Feb-Mar
  263.      Extensive GUS support this year, including educational titles
  264.  
  265. Apunix                   Sound Tool               Mar-Apr
  266.      They plan to release four other titles with GUS support.
  267.  
  268. The Blue Ribbon Sound    SuperJAM                 Feb-Mar
  269.  Works Ltd.
  270.      Also working on other MPC titles.  Well known music company
  271.      producing quality work for several years.  Featured numerous
  272.      times in Keyboard magazines.
  273.  
  274. Bt Software Enterprises  Xanthus                  Feb
  275.                          PC Composer              Mar
  276.  
  277.  
  278.      Published 3 selling titles to date.  Will support GUS in all
  279.      future titles.
  280.  
  281. Comptons New Media       Untitles                 Apr-May
  282.      Has planned support for all future releases.
  283.  
  284. DigiVox                  Sound Impression         Mar
  285.      Has plans for other future titles
  286.  
  287. E Book                   Untitled                 Apr
  288.      Has plans to support the GUS in future releases. An EA(AFL)
  289.  
  290. Electronic Arts          Ultra Chuck Yeager       Shipping
  291.                          NHL Hockey               Feb-Mar
  292.      Further support planned for additional titles.  Cannot release
  293.      working names yet.
  294.  
  295.  
  296. Epic Games               Drum Blaster             Feb-Mar
  297.      Shareware company planning support for all their new titles
  298.      including Track Blaster, Zone 66, Solar Winds, Savage Crusade
  299.  
  300.  
  301. Hollyware                Johnny Quest             Feb-Mar
  302.      Famous Cartoon adventure series of the 60's.  Several titles
  303.      planned for GUS support in 1993.
  304.  
  305. Ibis                     EarPlay                  Jan
  306.                          RiffTutor                Feb
  307.      Well known for their music programs.  GUS support planned for
  308.      all coming titles.
  309.  
  310. ID Software              Doom                     Feb-Mar
  311.                          Bio Hazard
  312.      Huge success with Wolfstein 3D.  GUS support planned for all
  313.      upcoming titles.
  314.  
  315. Intel Corporation        960 Family Features      Feb
  316.      Planning to use GUS in several Multi-Media Projects.
  317.  
  318. Interplay                Buzz Aldrin's            Mar
  319.                            Race into Space
  320.      Plans GUS support for all 1993 titles.  Now handles Virgin
  321.      Games, also planning GUS support.
  322.  
  323. IntraCorp Inc.           Terminator 2 Chess       Feb
  324.                          Trump Castle 3           Mar
  325.      Have produced quality games, such as Home Alone 2, Bridge
  326.      Master and Dark Half.
  327.  
  328. LucasArts Entertainment  Untitled                 Apr
  329.      Several titles planned for GUS support
  330.  
  331.  
  332.  
  333. Kesmai Corporation       Air Combat Warrior       Feb
  334.      Online gaming system has big plans for GUS support
  335.  
  336. Megatoon                 Jersey Devil             Mar-Apr
  337.      Electronic Arts (AFL) has many titles planned for GUS support
  338.  
  339.  
  340. (Continued to next message)
  341. ---
  342.  ~ QMPro 1.01 05-8925 ~ Thesaurus: ancient reptile with an excellent
  343. vocabulary.
  344.  
  345. ------------------------------
  346.  
  347. Date: Wed, 10 Mar 93 15:44:11 
  348. From: john.smith@gravis.com
  349. Message-Id: <9303101544.A8916wk@gravis.com>
  350. Subject: [GUS] NAMES OF FUTURESES2
  351. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  352.  
  353. (Continued from previous message)
  354.  
  355. Mercer Comp Systems      Midi Performer           Feb
  356.      Music Software company plans GUS support for several new titles
  357.  
  358. MicroProse               World Circuit            Shipping
  359.                          David Leadbetter's Golf  Jan-Feb
  360.                          Harrier                  Jan-Feb
  361.      These titles will include a patch, or will be revised for
  362.      full GUS support
  363.  
  364. MidiSoft                 Recording Session        Shipping
  365.      Music Software Company.  Will support GUS in all future
  366.      titles.
  367.  
  368. New World Computing      Empire Deluxe            Feb
  369.      An affiliate of Broderbund Software.  Plan GUS support for
  370.      all future titles
  371.  
  372. Norsehelm Products Inc.  Ragnarok II              Mar
  373.                          Seven Wonders
  374.      Producers of quality arcade adventure games.  Plan to support
  375.      GUS in future titles.
  376.  
  377. NovaLogic                Comanche                 Shipping
  378.                            Maximum Overkill
  379.                            The new Missions disk.
  380.                          UltraBolts               April
  381.      Affiliate of Electronic Arts. #1 selling fall title. Includes
  382.      their own SBOS.  GUS delivers superior stereo sound (not MONO)
  383.      with much clearer sound effects.
  384.  
  385. Odyssey Software         Space Wars               Mar
  386.  
  387.  
  388.      Received excellent press coverage in recent articles
  389.  
  390. Psygnosis                Lemmings 2               Feb-Mar
  391.     Renowned for huge successes in arcade style games.  Plan to
  392.     support GUS in other 1993 releases.
  393.  
  394. Sierra                   The Sierra Network       Mar-Apr
  395.     One of the fastest growing OnLine services.  Has plans to write
  396.     code for several Sierra titles.
  397.  
  398. Silicon & Synapse        Lost Vikings             Mar
  399.     Well known developers of the SNES.  They have also done
  400.     development for Interplay
  401.  
  402. S.S.I.                   Great Naval Battles      Shipping
  403.     Electronic Arts affiliate.  Well known for combat simulations
  404.     and D&D software.  This title includes their own SBOS patch.
  405.  
  406. Twelve Tone Systems      Cake Walk Pro            Mar
  407.     Music publisher will produce several titles with GUS support
  408.  
  409. Three Sixty              Battle Cruiser 3D        Feb
  410.     Electronic Arts Affiliate.  Excellent reputation for air,
  411.     combat and war simulations.  Plan to support GUS in other
  412.     1993 releases.
  413.  
  414. VOR Technologies, Inc.   Empires of the Known     Mar
  415.                            Universe
  416.     Online gaming system.  Plans GUS support to take advantage of
  417.     digital audio.
  418.  
  419. Westwood Studios         Untitled                 Apr-May
  420.     Has plans in the works for GUS support and 3D support in
  421.     summer releases.
  422.  
  423. WinJammer Software       WinJammer                Shipping
  424.     Well established Music Shareware Company.  Producing a new
  425.     midi-sequencer with GUS support.
  426. ---
  427.  ~ QMPro 1.01 05-8925 ~ Thesaurus: ancient reptile with an excellent
  428. vocabulary.
  429.  
  430. ------------------------------
  431.  
  432. Date: Fri, 12 Mar 93 11:27:44 -0500
  433. From: mtl1@crux2.cit.cornell.edu
  434. Message-Id: <9303121627.AA25087@crux1.cit.cornell.edu>
  435. Subject: F15 III:  No digitized voice!
  436. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  437.  
  438. I just got F15-III and installed it.  With the GUS, it sounds awesome!  Except
  439. that there is just no digitized voice.  The sound effects are fine! Does anyone
  440. else have this same problem or is it just me?  I have a 486DX-33 EISA machine
  441.  
  442.  
  443. with 8MB (63XXXXkB free conventional).  A 210 MB and a 91 MB harddrives.  I am
  444. using SBOS 1.4B3.  But I've tried version 1.22 and 1.23 and 1.37B to no vail.
  445. Please help!
  446.                                                                 Marshall        
  447.  
  448. ------------------------------
  449.  
  450. Date: Fri, 12 Mar 93 13:08:47 GMT
  451. From: djo@utopia.hacktic.nl (micha van der meer)
  452. Message-Id: <cHya1B4w165w@utopia.hacktic.nl>
  453. Subject: FACTS OF LIVE
  454. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  455.  
  456. FACTS OF LIVE   CRASHED! after checking.....
  457.  
  458. Can somebody say why???
  459.  
  460. micha /witan
  461.  
  462. ************************************************************
  463. *  MIND FLAYER                            xx31-71127027    *
  464. *  NIGHT TOWN                             xx31-188027160   *
  465. *  14k4 24 H                                               *
  466. *
  467. *  or write to witan@utopia.hacktic.nl                     *
  468. ************************************************************
  469. SOON THE NEW WITAN DEMO TOTAL GUS SUPPORT !!!!!
  470.  
  471.  ---
  472. djo@utopia.hacktic.nl (micha van der meer)
  473.  
  474. ------------------------------
  475.  
  476. Date: Thu, 11 Mar 1993 16:29:11 -0700
  477. From: Simon Williams <srw@cpsc.ucalgary.ca>
  478. Message-Id: <9303112329.AA19372@fsg.cpsc.ucalgary.ca>
  479. Subject: GUS FAQ
  480. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  481.  
  482. I'am mailing this for Scott Willing:
  483.  
  484. Francois Dion's references to QSound in his reply to the question: What 
  485. exactly is GUS 3D? has provided a good deal of amusement to us here at 
  486. the QSound Technical Research Facility.  We are concerned, however, that
  487. others may be missing the joke, so allow us to fill you in.
  488.  
  489. The information that QSound was invented in Quebec was news to Danny Lowe,
  490. our current VP of R&D, who with studio tech John Lees developed the process
  491. here in Calgary.
  492.  
  493. The statement that QSound 'is not that good even with electrostatic 
  494. headphones' is a bit confusing.  QSound is not intended to work on 
  495. headphones: it is a system for speaker-based playback.  The quality 
  496.  
  497.  
  498. of the headphones, therefore, would somewhat obviously not be an issue.
  499.  
  500. As for the issue of the 'sweet spot' (not 'soft spot', Francois), yes
  501. it is true that the listener must be in the middle to experience the 
  502. effect properly.  Most people do not realise that the same is true of
  503. regular stereo recording, if one cares about imaging at all (and if not,
  504. what loss?)  However, Francois' description of what happens off-axis leads 
  505. us to wonder what recordings or systems he has actually listened to.
  506.  
  507. QSound does not cost '18K$'.  In fact, in the professional workstation
  508. form, it is not currently for sale at any price.  The first soundcards
  509. incorporating QSound processing will be available soon at typical
  510. consumer-level prices.
  511.  
  512. As to the issue of controllability, the information given is out of date. 
  513. The present professional system incorporates SMPTE/MTC-locked
  514. internal motion sequencing, as well as the ability to accept external
  515. MIDI control.  The former option is popular in professional recording
  516. environments where MIDI still only sees limited use, and the latter,
  517. obviously, in sequencer-driven environments which are more common in
  518. project and jingle studios and in the production of CD-ROM soundtracks.  
  519. (Virgin Games, for example, is using QSound to mix four CD-ROM titles 
  520. currently.)
  521.  
  522. QSound is now engaged in ongoing licencing efforts which will see the 
  523. technology in end-users' hands in several different forms at low 
  524. incremental cost.
  525.  
  526. Rumours and misinformation always abound, and the computer age certainly
  527. lends itself to the rapid distribution thereof.  No hard feelings, Francois,
  528. but we had to set the record straight.
  529.  
  530. Best Regards, 
  531.  
  532.         Scott Willing and the whole Q crew.
  533.  
  534.  
  535.  
  536. --------------------------------------------------------------------
  537.  
  538.     Simon Williams            srw@cpsc.ucalgary.ca
  539.  
  540. ------------------------------
  541.  
  542. Date: Thu, 11 Mar 93 19:13:53 EST
  543. From: "J. Gamache" <QAAA@vm1.si.USherb.ca>
  544. Message-Id: <9303120022.AA04119@orca.es.com>
  545. Subject: GUS prices in Montreal
  546. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  547.  
  548. Hello Montreal GUS users,
  549.  
  550.                       after several month of reading this newsletter, I
  551.  
  552.  
  553.  finally decided to buy a GUS, but here in Sherbrooke there's not much
  554.  competition between computer stores and the best price I found was $210.
  555.  But I plan to go to Montreal sometime and I wonder if any of the Montreal
  556.  GUS users (i.e. Mr. Dion or another) could point me to a store where the
  557.  GUS is cheaper.
  558.                                           Thank You
  559.                                              Jerry Gamache
  560. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  561. % Jerry Gamache           % Si vous pouvez lire ceci... Vous n'avez pas    %
  562. % QAAA@UDESVM             %  besoin de cours de francais!                  %
  563. % QAAA@VM1.SI.USHERB.CA   %                      Salut tout le monde!!!    %
  564. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  565.  
  566. ------------------------------
  567.  
  568. Date: Fri, 12 Mar 1993 01:22:47 -0500
  569. From: ral@cc.bellcore.com
  570. Message-Id: <199303120622.AA26126@tbird.cc.bellcore.com>
  571. Subject: Just Got My GUS
  572. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  573.  
  574. I just received my GUS today, ordered from Telemart.  Under the shrink
  575. wrap there is a white sticker that says the box includes UltraSound Studio 8,
  576. Windows Driver, Audio/Playdigi/Playfile, Ultrafil, Playmidi, and samples.
  577.  
  578. My question: Was I stupid to order now and not wait.  It looks like
  579. maybe I didn't get Howling Dog's Power Chords or MidiSoft's
  580. Recording Session.  What happened to these bundles?
  581. When are the full set of samples supposed to have been ready?
  582. When is the Gravis 3D coming out?  I need answers!
  583.  
  584. Ron Levenberg                            | Phone (908) 758-5510
  585. Bell Communications Research (Bellcore)  | FAX   (908) 758-4314
  586. 331 Newman Springs Road, Room NVC-2Z337  | ral@cc.bellcore.com
  587. Red Bank,  NJ  07701-7030                |
  588.  
  589. ------------------------------
  590.  
  591. Date: Thu, 11 Mar 93 09:21:08 EST
  592. From: sbm@pt.com (Steve McGowan)
  593. Message-Id: <9303111421.AA04766@pt.com>
  594. Subject: MIDI file format request
  595. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  596.  
  597. Does anyone have a description of the MIDI (.mid) file format that they
  598. can mail me? I don't have ftp access.
  599.  
  600. Thanks in advance,
  601. Steve
  602.  
  603. ------------------------------
  604.  
  605. Date: Thu, 11 Mar 93 10:14:19 EST
  606.  
  607.  
  608. From: rjw@genrad.com (Rod J. Wittmier)
  609. Message-Id: <9303111514.AA07775@animal.genrad.com>
  610. Subject: Need Issue 64 & 65
  611. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  612.  
  613. Because of the digest loosing the distribution list, I missed two issues.
  614. I have issue V2 #63 and have got V2 #66 after re-subscribing.  I need
  615. V2 #64 & #65.
  616.  
  617. Is this something I can request of the server or must someone send it to
  618. me?
  619.  
  620. I did check the ftp sites EPAS and WUARCHIVE for the digest but neither
  621. have any V2 digests.   It would be nice to see these updated as well.
  622.  
  623.                 Thanks,
  624.  
  625.                 Rod Wittmier
  626.  
  627.  
  628. ------------------------------
  629.  
  630. Date: Wed, 10 Mar 93 15:44:08 
  631. From: john.smith@gravis.com
  632. Message-Id: <9303101544.A8911wk@gravis.com>
  633. Subject: NEW FILES
  634. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  635.  
  636. I'm having a heck of a time getting GUS0015.ZIP and GUS0016.ZIP onto
  637. EPAS.  Everytime I try and upload it to my host to FTP it my uploads
  638. keep aborting after about 50K, arghh...  Could someone please download
  639. these files off of the Gravis BBS and post them in the submit directory
  640. on EPAS?
  641.  
  642. Thanx.
  643.  
  644. John
  645. ---
  646.  ~ QMPro 1.01 05-8925 ~ It's not hard to meet expenses, they're everywhere.
  647.  
  648. ------------------------------
  649.  
  650. Date: Thu, 11 Mar 93 14:08:05 BST
  651. From: Jason Dore <jase@praxis.co.uk>
  652. Message-Id: <17373.9303111408@wiener.praxis.co.uk>
  653. Subject: pathces? midi connector
  654. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  655.  
  656. Everyone,
  657.  
  658. I got my GUS on monday. Installation was a breeze, I used default
  659. settings for everything but DMA1 which I replaced with DMA6 (16bit)
  660.  
  661.  
  662.  
  663. Intially I couldn't get midi-in to be recogonised, then I found the
  664. updated driver in some stuff someone ftp'd from epas, great.
  665.  
  666. My MIDI connector works brilliantly (in and out) which was a great
  667. surprise as I've heard a lot of people say that theirs didn't. I used
  668. the cicuit from this digest, with a 6N139 Opto Isolator. Didn't bother
  669. with the midi-thru bit. I bought a tiny box that houses a 15way D
  670. plug/socket at each end (bit like a null modem adapter). I used a
  671. pre-fabricated midi lead (5metres I think), cut in half, for the two
  672. midi leads. I did connect the middle DIN pin (pin2?) to ground on the
  673. D connector.  I'd be very happy to post the exact circuit I used, and
  674. construction details to the digest or anyone that requests it.
  675.  
  676. Now, a question about patches:
  677.  
  678. Exactly how are the patch number in Winjammer, and the patch file in
  679. /ultrasound/midi connected?
  680.  
  681. For instance, if I use wav2pat to create a new patch, how do I play
  682. that patch? Presumable I copy the patch into /ultrasnd/midi, and
  683. then edit /ultrasnd/ultrasnd.ini ? This doesn't seem to make it use
  684. the new patch. Do I have to restart windows? Is there another .INI
  685. file somewhere?
  686.  
  687. Thanks in advance,
  688.  
  689. Jase
  690.  
  691.  
  692. --
  693. /---------------------------------------------------------------------\
  694. | My opinions - not necessarily those of Praxis   | Jason Dore          |
  695. | Praxis Warwick Ltd, University of Warwick,      | jase@praxis.co.uk |
  696. | Coventry, CV4 7HS                                  (Tel) 0203 692324| 
  697. | The software engineering company of Touche Ross    (Fax) 0203 692171|
  698. \---------------------------------------------------------------------/
  699.  
  700. ------------------------------
  701.  
  702. Date: Thu, 11 Mar 1993 17:34:03 +0100
  703. From: kristoffer.holger@ilf.uio.no
  704. Message-Id: <9303111634.AAulrik21050@ulrik.uio.no>
  705. Subject: Problems with installing the GUS
  706. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  707.  
  708. I bougth the GUS some weeks ago and experienced the following. I will be
  709. most grateful for comments on what the problem might be, either by mail
  710. directly or in the list.
  711.  
  712. First I inserted the card and installed the software. This went perfectly
  713. up to the point where setup.exe is automatically run. It froze my computer
  714. and I had to reboot it using the reboot-button as the alt-ctrl-del didn't
  715. work. I changed the jumpers on the card (I tried all six possibilities) but
  716.  
  717.  
  718. the setup-program froze everything every time. I do not have a joy-stick
  719. card installed, but I tried to disable the game-port on the GUS anyway, but
  720. that didn't help either. I even pulled out my VGA-card and rebooted the
  721. computer with an order to load setup.exe placed in the autoexec.bat, but no
  722. speach or music was produced. I looked at the BIOS configuration, but saw
  723. nothing that I think would have any relevance (but then again, I am not
  724. very familiar with the hardware part of computers), for instance, I saw no
  725. option to (or indeed mentioning of) disabeling chip-ram parity.
  726.  
  727. This is my equipment:   386-sx 16Mhz
  728.                         Oak VGA 256k ram
  729.                         harddisk/floppydisk-controller with seriel and
  730. parallel port
  731.                         Quantum 42MB harddisk
  732.                         Phoenix BIOS
  733.  
  734. This isn't excactly an unusual and sophisticated configuration, so I don't
  735. think that the problem is lack of adress-space. I have looked inside to see
  736. if there were any OPTi- or UMC- labelled chips in there, but I saw none.
  737.  
  738. Then a friend of mine also bought the GUS. His worked perfectly. I tried
  739. mine in his computer (naturally, we removed his card first) and his
  740. computer hung as thoroughly as mine had. And when I tried his in my
  741. computer, it worked perfectly in my computer too (and it is still
  742. functioning in his computer). So this was an easy one I thougth: my GUS was
  743. faulty.
  744.  
  745. I returned it and received a new one. Imagine my surprise when precisely
  746. the same thing happened again. I saw no need to try this one also at my
  747. friend's place, so I returned it rigth away.
  748.  
  749. Then I got my third GUS. As I opened the box I felt kind of nervous, so I
  750. didn't install the card in my computer: This time I wanted to try it first
  751. in my friends computer. And so I did. As a matter of fact, I had him
  752. install it, just to make sure that I wouldn't harm it in any way during the
  753. installation. The computer froze totally without any mercy. I haven't
  754. recieved my fourth GUS yet.
  755.  
  756. Any comments? Am I unlucky or what?
  757.  
  758.  
  759.  
  760.  
  761. - Kristoffer H. K.
  762.  
  763. holger@hedda.uio.no
  764.  
  765. ------------------------------
  766.  
  767. Date: Wed, 10 Mar 93 15:44:08 
  768. From: john.smith@gravis.com
  769. Message-Id: <9303101544.A8912wk@gravis.com>
  770. Subject: PROBLEM WITH -O3 AND 1.4B
  771.  
  772.  
  773. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  774.  
  775. The message "The NMI Procedure on this PC is disabled" isn't an error
  776. message when you run SBOS with -o3.  It is simply telling you that it
  777. has been disabled.  There is only ONE game that needs the -o3 switch.
  778.  
  779. John
  780. ---
  781.  ~ QMPro 1.01 05-8925 ~ Misspelled?  Impossible.  My modem is error correcting.
  782.  
  783. ------------------------------
  784.  
  785. Date: Wed, 10 Mar 93 15:44:09 
  786. From: john.smith@gravis.com
  787. Message-Id: <9303101544.A8914wk@gravis.com>
  788. Subject: PTRAN@SCIBORG.....
  789. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  790.  
  791. You posted a message in the digest stating that you've been having some
  792. problems with SBOS.
  793.  
  794. Could you be more specific on the problems.  IE: What games does it
  795. happen with and when?  I'll pass on your response to Forte so they can
  796. look into it.
  797.  
  798. Who ever you talked to here at Gravis Tech didn't pass on your previous
  799. information.  However, if you send an email message to me detailing your
  800. problems I'll pass it onto Forte.
  801.  
  802. Thanx for the feedback.
  803.  
  804. John
  805. ---
  806.  ~ QMPro 1.01 05-8925 ~ Soon To Be A Major Motion Picture.
  807.  
  808. ------------------------------
  809.  
  810. Date: Thu, 11 Mar 93 17:24:52 PST
  811. From: smoot@woodstock.cs.berkeley.edu (Steve Smoot)
  812. Message-Id: <9303120124.AA27823@woodstock.cs.berkeley.edu>
  813. Subject: SBOS
  814. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  815.  
  816. I vaguely recall being told that sbos should not be loaded as part of
  817. autoexec, is there any real reason for this?  The new one interferes with
  818. anarkey, so I need to load sbos before anarkey, and this is easiest if its
  819. in the autoexec.
  820.  
  821. -s
  822.  
  823. ------------------------------
  824.  
  825. Date: Thu, 11 Mar 93 10:57:40 EST
  826.  
  827.  
  828. From: sbm@pt.com (Steve McGowan)
  829. Message-Id: <9303111557.AA09684@pt.com>
  830. Subject: Ultrasound Daily Digest V2 #66
  831. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  832.  
  833. Jim,
  834.  
  835. What is a blocked VOC? And would have any descriptions of sound
  836. related file formats? (.voc, .mod, etc.) Or do you know where I
  837. could get them? I don't have ftp access but I can download from
  838. SIMTEL. Did you write CV2SAM?
  839.  
  840. Thanks in advance, Steve.
  841.  
  842. ------------------------------
  843.  
  844. Date: 11 Mar 93 09:18:40 EST
  845. From: "Joseph R. Granto"  <GLOCK@chip.cba.ufl.edu>
  846. Message-Id: <MAILQUEUE-101.930311091840.448@chip.cba.ufl.edu>
  847. Subject: vol 64 and 65
  848. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  849.  
  850. I never got these digests...
  851.  
  852. Could someone please email them to me?
  853.  
  854. Thanks!
  855.  
  856.  
  857. ----------------------------------------------------------------------
  858. Joe Granto                                      GLOCK@chip.cba.ufl.edu
  859.  
  860. "When the going gets tough, the tough get a GLOCK!"
  861.     --Guns & Ammo
  862. "Don't clock'em, GLOCK'em!"
  863.     --Miami Dade police officer
  864. ----------------------------------------------------------------------
  865.  
  866. ------------------------------
  867.  
  868. Date: Thu, 11 Mar 93 14:28:24 BST
  869. From: Jason Dore <jase@praxis.co.uk>
  870. Message-Id: <18235.9303111428@wiener.praxis.co.uk>
  871. Subject: Winjammer - Help!
  872. To: Ultrasound Daily Digest <ultrasound@dsd.es.com>
  873.  
  874.  I'm using Winjammer v2.24.
  875.  
  876.  I want to record a new track. How do I assign an instrument to the
  877.  track and then be able to hear what I'm recording through the GUS. I
  878.  have midi thru enabled, but although I can hear the track I'm
  879.  recording, the instrument that I can hear is one that has been
  880.  assigned to another track. I cannot hear anything through midi thru
  881.  
  882.  
  883.  when I record the first track. HELP!
  884.  
  885.  Secondly,
  886.  
  887.  How do I do percussion? I've been playing with justify.mid, which
  888.  seems to use channel 10 for percussive sounds. Is this a midi
  889.  standard, or is there some midi command to say which channel(s) are to
  890.  be used for percussion?.
  891.  
  892. Thanks,
  893.  
  894. Jase.
  895.  
  896.  / My opinions - not necessarily those of Praxis   | Jason Dore          \
  897.  | Praxis Warwick Ltd, University of Warwick,      | jase@praxis.co.uk |
  898.  \ The software engineering company of Touche Ross    (Tel) 0203 692324/
  899.  
  900.  
  901. ------------------------------
  902.  
  903. End of Ultrasound Daily Digest V2 #67
  904. ******************************
  905.  
  906. Digest Address:                                        ultrasound@dsd.es.com
  907.                                                 To post to tomorrow's digest
  908.  
  909. Request Server Address:                        ultrasound-request@dsd.es.com
  910.                                 To subscribe, unsubscribe, and request files
  911.  
  912. Owner Address:                                   ultrasound-owner@dsd.es.com
  913.                                To contact a human if the server has troubles
  914.  
  915. FTP Sites:                archive.epas.utoronto.ca         pub/pc/ultrasound
  916.                           wuarchive.wustl.edu       systems/msdos/ultrasound
  917.  
  918.  
  919.